stored procedures - определение. Что такое stored procedures
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое stored procedures - определение

SUBROUTINE AVAILABLE TO APPLICATIONS THAT ACCESS RELATIONAL DATABASE MANAGEMENT SYSTEMS
Stored procedures; Sproc; StoredProc; Storp
Найдено результатов: 209
stored procedure         
<database> A subroutine stored in a database and executed by the database management system. The subroutine may be written in the same language in which the database is queried and may be precompiled to improve performance. Typically a stored procedure encapsulates some business process. Performing this on the database server avoids the network overhead of transferring input data to the client for processing. This would be particularly significant if processing lots of data and returning a small result set like a total or maximum. Stored procedures also provide consistent implementation of the business logic to clients written in different languages and running in different environments. Some financial systems allow databases access through stored procedures alone, this restricts actions on the data to a small number of auditable queries. Sybase SQL Server (Adaptive Server Enterprise) was the first commercially successful RDBMS to support stored procedures. (2004-03-04)
Stored procedure         
A stored procedure (also termed proc, storp, sproc, StoPro, StoredProc, StoreProc, sp, or SP) is a subroutine available to applications that access a relational database management system (RDBMS). Such procedures are stored in the database data dictionary.
Stored-program computer         
COMPUTER WHICH CAN OPERATE UPON ITS OWN PROGRAMMING AS DATA
Stored program; Stored program architecture; Stored-program; Stored program computer; Stored-program computers; Storedprogram computer; Stored program computers; Storedprogram computers; Storedprogram; Stored programs; Programmable computer
A stored-program computer is a computer that stores program instructions in electronically or optically accessible memory. This contrasts with systems that stored the program instructions with plugboards or similar mechanisms.
Electronically stored information (Federal Rules of Civil Procedure)         
TECHNOLOGICAL DEVELOPMENT
Electronically Stored Information; Electroniclly stored information; Electronically stored information
Electronically stored information (ESI), for the purpose of the Federal Rules of Civil Procedure (FRCP) is information created, manipulated, communicated, stored, and best utilized in digital form, requiring the use of computer hardware and software.Electronically Stored Information: The December 2006 Amendments to the Federal Rules of Civil Procedure , Kenneth J.
non-destructive         
  • Angioplasty
  • Flexible endoscope
  • Arthroscopic surgery
SURGICAL TECHNIQUES THAT LIMIT THE SIZE OF INCISIONS NEEDED
Minimally-invasive; Invasive (medical); Minimally invasive surgery; Minimally Invasive Surgery; Noninvasive; Minimally invasive; Noninvasive procedures; Surgical procedures, minimally invasive; Open surgery; Minimal incision; Invasiveness; Minimally invasive procedures; Invasiveness of surgery; Invasive surgery; Non-destructive; Minimally-invasive surgery; Minimally-invasive procedure; Minimal incision technique; Non-invasive surgery; Non-invasive technique; Invasiveness of surgical procedures; Minimally-invasive procedures; Open operation; Minimally invasive surgical procedure
¦ adjective technical (chiefly of methods of testing) not involving damage to the specimen.
Minimally invasive procedure         
  • Angioplasty
  • Flexible endoscope
  • Arthroscopic surgery
SURGICAL TECHNIQUES THAT LIMIT THE SIZE OF INCISIONS NEEDED
Minimally-invasive; Invasive (medical); Minimally invasive surgery; Minimally Invasive Surgery; Noninvasive; Minimally invasive; Noninvasive procedures; Surgical procedures, minimally invasive; Open surgery; Minimal incision; Invasiveness; Minimally invasive procedures; Invasiveness of surgery; Invasive surgery; Non-destructive; Minimally-invasive surgery; Minimally-invasive procedure; Minimal incision technique; Non-invasive surgery; Non-invasive technique; Invasiveness of surgical procedures; Minimally-invasive procedures; Open operation; Minimally invasive surgical procedure
Minimally invasive procedures (also known as minimally invasive surgeries) encompass surgical techniques that limit the size of incisions needed, thereby reducing wound healing time, associated pain, and risk of infection. Surgery by definition is invasive and many operations requiring incisions of some size are referred to as open surgery.
Stored program control         
TECHNOLOGY USED FOR TELEPHONE EXCHANGES
Stored Program Control exchange; Stored program control exchange; Stored-program switch; Stored-program exchange; Stored-program telephone switch; Stored-program telephone exchange
Stored program control (SPC) is a telecommunications technology used for telephone exchanges controlled by a computer program stored in the memory of the switching system. SPC was the enabling technology of electronic switching systems (ESS) developed in the Bell System in the 1950s, and may be considered the third generation of switching technology.
Common stored value ticket         
Common Stored Value Tickets; Common Stored Value Ticket
A common stored value ticket was a plastic magnetically sensitive card used for paying fares on the MTR and KCR railway systems in Hong Kong from 1984 to 1999. It was also used on Citybus and Kowloon Motor Bus for some MTR and KCR feeder bus services.
Stored-value card         
A PAYMENT CARD WITH A MONETARY VALUE STORED ON THE CARD ITSELF, NOT IN AN EXTERNAL ACCOUNT MAINTAINED BY A FINANCIAL INSTITUTION.
Stored value card; Transit card; Stored Value Card; Bopo; Fare card; Stored-value cards
A stored-value card (SVC) is a payment card with a monetary value stored on the card itself, not in an external account maintained by a financial institution. This means no network access is required by the payment collection terminals as funds can be withdrawn and deposited straight from the card.
Analytical procedures (finance auditing)         
AUDIT AND ASSURANCE
Analytical Procedures
Analytical procedures are one of many financial audit processes which help an auditor understand the client's business and changes in the business, and to identify potential risk areas to plan other audit procedures. It is also the evaluation of financial information made by a study of plausible or credible relationships among both financial and non financial data

Википедия

Stored procedure

A stored procedure (also termed proc, storp, sproc, StoPro, StoredProc, StoreProc, sp, or SP) is a subroutine available to applications that access a relational database management system (RDBMS). Such procedures are stored in the database data dictionary.

Uses for stored procedures include data-validation (integrated into the database) or access-control mechanisms. Furthermore, stored procedures can consolidate and centralize logic that was originally implemented in applications. To save time and memory, extensive or complex processing that requires execution of several SQL statements can be saved into stored procedures, and all applications call the procedures. One can use nested stored procedures by executing one stored procedure from within another.

Stored procedures may return result sets, i.e., the results of a SELECT statement. Such result sets can be processed using cursors, by other stored procedures, by associating a result-set locator, or by applications. Stored procedures may also contain declared variables for processing data and cursors that allow it to loop through multiple rows in a table. Stored-procedure flow-control statements typically include IF, WHILE, LOOP, REPEAT, and CASE statements, and more. Stored procedures can receive variables, return results or modify variables and return them, depending on how and where the variable is declared.